PDF for UWP | ComponentOne
C1.Xaml.Pdf Namespace / C1PdfDocumentBase Class / Write(String,Object[]) Method
Format string, as in System.String.Format(System.String,System.Object).
Array of objects to write using format.

In This Topic
    Write(String,Object[]) Method
    In This Topic
    Writes raw content into the Pdf stream for the current page.
    Syntax
    'Declaration
     
    
    Public Sub Write( _
       ByVal format As String, _
       ByVal ParamArray args() As Object _
    ) 
    public void Write( 
       string format,
       params object[] args
    )

    Parameters

    format
    Format string, as in System.String.Format(System.String,System.Object).
    args
    Array of objects to write using format.
    Remarks
    This is a low-level method that allows you to insert Pdf commands directly into the page stream. It is intended for use by derived classes and requires knowledge of the Pdf document structure and syntax.
    See Also